home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1997 May / PC Plus Super CD Issue 127 (May 1997).iso / delphi1 / lesson4 / todolist / savedlg.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-01-11  |  378 b   |  27 lines

  1. unit Savedlg;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls;
  8.  
  9. type
  10.   TSaveMsg = class(TForm)
  11.     FileNameLabel: TLabel;
  12.     Label1: TLabel;
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   SaveMsg: TSaveMsg;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. end.
  27.